net/http.response.status (field)

7 uses

	net/http (current package)
		server.go#L455: 	status        int   // status code passed to WriteHeader
		server.go#L1180: 	w.status = code
		server.go#L1323: 	if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && !header.has("Content-Length") && (!isHEAD || len(p) > 0) {
		server.go#L1340: 	if w.wants10KeepAlive && (isHEAD || hasCL || !bodyAllowedForStatus(w.status)) {
		server.go#L1431: 	code := w.status
		server.go#L1509: 		!isProtocolSwitchResponse(w.status, header)
		server.go#L1568: 	return bodyAllowedForStatus(w.status)